/* CSS STYLESHEET, for nutrition-calc.000webhostapp.com */
header {
    padding: 30px;
}

footer { /* Footer style, bottom of page. */
    margin: auto;
    width: 70%;
    padding: 30px;
    padding-top: 200px;
    font-family: times, Times New Roman, times-roman, georgia, serif;
    color: #444;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
}

.header_site { /* Header style for Website label header */
    margin: auto;
    width: 90%;
    font-family: times, Times New Roman, times-roman, georgia, serif;
    color: #444;
    font-size: 42px;
    line-height: 44px;
    letter-spacing: -1px;
    font-weight: bold;
    text-align: center;
}
.header_page { /* Header style for Web-Page label header */
    margin: auto;
    width: 90%;
    font-family: times, Times New Roman, times-roman, georgia, serif;
    color: #444;
    font-size: 28px;
    line-height: 44px;
    letter-spacing: -2px;
    font-weight: bold;
    text-align: center;
}

.bold-link {
    font-weight: bold;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: purple;
    text-align: center;
}
.navbar li {
    float: left;
}
.navbar li a {
    display: block;
    color: white;
    font-family: times, Times New Roman, times-roman, georgia, serif;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    padding-left: 20;
    padding-right: 20;
    padding-top: 5;
    padding-bottom: 5;
}
.navbar li a:hover {
    background-color: rgb(80, 0, 80);
}

.table_space { /* style for Table div container */
    height: 500px;
    width: 820px; 
    margin: auto;
    text-align: center;
    overflow: scroll;
}

#cpmonth {
    font-weight: bold;
    font-size: 42px;
    color: red;
}

#iframe_nt {
    display: none;
    border: none;
    width: 830px;
    height: 600px;
}

#nutrition_table { /* style for Table borders spacing */
    width: 800px;
    border-collapse: collapse;
}
#nutrition_table th{ /* style for Table border lines */
    border: 1px solid purple;    
    padding: 4px;
    text-align: left;
}
#nutrition_table td{ /* style for Table border lines */
    border: 1px solid purple;    
    padding: 4px;
    text-align: left;
}
#disclaimer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: red;
}
#wcchart {
    padding: 40;
}

.container { /* style for generic text containers */
    font-family: "Adobe Caslon Pro", "Hoefler Text", Georgia, Garamond, Times, serif;
    color: #424242;
    width: 65%;
}

.container form table tr td{ /* style for Table displaying input description and fields */
    padding: 15px;
    font-family: Gill Sans, Verdana;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}
.inputfield { /* style for input boxes */
    font-size: 16;
}

/* === Begin button properties === */
/* Borrowed template, for reactive button effects */
.button {
    border-radius: 4px;
    background-color: purple;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    font-family:  times, Times New Roman, times-roman, georgia, serif;
    padding: 8px;
    width: 165px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
} .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
} .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
} .button:hover span {
    padding-right: 25px;
} .button:hover span:after {
    opacity: 1;
    right: 0;
}
/* === End button properties === */

/* === Start SideBar properties === */
#snbutton {
    position: absolute;
    top: 185px;
    right: 8px;
    padding-right: 5px;
    font-size:24px;
    cursor:pointer;
    background-color: purple;
    color: #818181;
    width: 245px;
    text-align: right;
}
#snbutton cursor:hover {
    color: #f1f1f1;
}
.sidenav {
    height: 260px;
    width: 0;
    z-index: 1;
    float: right;
    background-color: purple;
    overflow-x: hidden;
    transition: 0.5s;
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover {
    color: #f1f1f1;
}
.sidenav .closebtn {
    float: right;
    font-size: 48px;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/* === End SideBar properties === */